home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / linux / src / atalnx_3.lzh / atari-linux-0.01pl3 / atari / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  644 b   |  29 lines

  1. # Makefile for 680x0 Linux atari source directory
  2. #
  3. # Copyright 1993 by Hamish Macdonald
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "README.legal" in the main directory of this archive
  7. # for more details.
  8.  
  9. include ../MakeVars
  10.  
  11. OBJS    = config.o atakeyb.o ataints.o atacon.o font_8x16.o font_8x8.o \
  12.           atapart.o stdma.o atasound.o joystick.o mouse.o
  13.  
  14. atari.o: $(OBJS)
  15.     $(LD) -r -o atari.o $(OBJS)
  16.  
  17. clean:
  18.     $(RM) $(RMFLAGS) *.o *.a
  19.  
  20. dep:
  21.     $(CPP) -M $(INCFLAGS) *.c > .depend
  22.  
  23. #
  24. # include a dependency file if one exists
  25. #
  26. ifeq (.depend,$(wildcard .depend))
  27. include .depend
  28. endif
  29.